Introduction:

libScanAPI is the API library for application to work with Futronic's FS80 USB fingerprint Scanner.
We don't have a kernel mode driver for FS80 scanner, libScanAPI.so works with a well-known multiplatform library libusb, libusb is a library which allows userspace application access to USB devices. Last version of libusb is 0.1.12. This last version is recommended to install and work together with libftrScanAPI.so. The official site of this library - http://libusb.sourceforge.net.


Files:

1. libScanAPI.so	- The Linux version library, it must be copied to the working directory.
2. libusb: libusb.so, libusb-0.1.so.4, libusb-0.1.so.4.4.4 - The libusb library, it is built from libusb-0.1.12, it must be copied to the directory of /usr/local/lib.
	you should download the libusb-0.1.12 and then build to your OS. If you do so or the OS has installed it, these files need NOT to copy.
3. ftrScanAPI.h		- header file for libftrScanAPI.so, it must be copied to working directory.
4. ftrScanAPI_Ex.c	- Example source code, it must be copied to working directory.
5. ftrScanAPI_Ex.mak	- make file for the example, it must be copied to working directory. To build it, #make -f ftrScanAPI_Ex.mak
6. ftrScanAPI_Ex	- The executable example. To run it, #./ftrScanAPI_Ex

For Arm Linux, please make sure that the usbfs is supported by the linux kernel, and mount the usbfs as below:
 #mount -t usbfs none /proc/bus/usb
